home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia1.dir / 01189_Script_1189 < prev    next >
Text File  |  1995-05-21  |  410b  |  15 lines

  1. on exitFrame
  2.   global TheDrivePath
  3.   -- changes all the fileNames of the linked assets
  4.   repeat with i = 1 to the number of castmembers
  5.     if the fileName of cast i = TheDrivePath & ":\Assets\" ¼
  6. & the name of cast i then
  7.       nothing
  8.     else
  9.       set the fileName of cast i = TheDrivePath & ":\Assets\" ¼
  10. & the name of cast i
  11.       --put the fileName of cast i
  12.     end if
  13.   end repeat
  14.   
  15. end